GtkIconTheme: Drop an unused variable
authorMatthias Clasen <mclasen@redhat.com>
Fri, 20 Jun 2014 19:52:48 +0000 (15:52 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 22 Jun 2014 15:52:11 +0000 (11:52 -0400)
We no longer need a separate field for symbolic icon size,
now that we are using the directory size.

gtk/gtkicontheme.c

index 3e921e811329c4cce9387661c04b39ffcafefe1b..013275af2d24706ff73e06ee7414b6f6f9791988 100644 (file)
@@ -264,8 +264,6 @@ struct _GtkIconInfo
   gdouble scale;
 
   SymbolicPixbufCache *symbolic_pixbuf_cache;
-
-  GtkRequisition *symbolic_pixbuf_size;
 };
 
 typedef struct
@@ -3429,7 +3427,6 @@ gtk_icon_info_finalize (GObject *object)
   g_clear_object (&icon_info->proxy_pixbuf);
   g_clear_object (&icon_info->cache_pixbuf);
   g_clear_error (&icon_info->load_error);
-  g_clear_pointer (&icon_info->symbolic_pixbuf_size, gtk_requisition_free);
 
   symbolic_pixbuf_cache_free (icon_info->symbolic_pixbuf_cache);